POST
/
v1
/
runtime
/
sessions
/
{sessionId}
/
system-events
Operator [SYSTEM] event injection
curl --request POST \
  --url https://api.talkzilla.app/v1/runtime/sessions/{sessionId}/system-events \
  --header 'Content-Type: application/json' \
  --cookie talkzilla_user_session= \
  --data '
{
  "message": "<string>"
}
'
{
  "data": {
    "event_id": "evt_...",
    "topic": "<string>"
  }
}

Authorizations

talkzilla_user_session
string
cookie
required

Session cookie set by the Kratos login flow.

Path Parameters

sessionId
string
required

Body

application/json
kind
enum<string>
required
Available options:
notify,
end-session
message
string

Required when kind=notify; max 4000 chars.

Maximum string length: 4000

Response

202 - application/json

Event accepted.

data
object